home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / PInterfaces / SNSRegistry.p < prev    next >
Text File  |  1996-05-01  |  1KB  |  63 lines

  1. {
  2.      File:        SNSRegistry.p
  3.  
  4.      Contains:    System Notification Service Registry of services and kinds.
  5.  
  6.      Version:    Technology:    System 8
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. }
  18. {$IFC UNDEFINED UsingIncludes}
  19. {$SETC UsingIncludes := 0}
  20. {$ENDC}
  21.  
  22. {$IFC NOT UsingIncludes}
  23.  UNIT SNSRegistry;
  24.  INTERFACE
  25. {$ENDC}
  26.  
  27. {$IFC UNDEFINED __SNSREGISTRY__}
  28. {$SETC __SNSREGISTRY__ := 1}
  29.  
  30. {$I+}
  31. {$SETC SNSRegistryIncludes := UsingIncludes}
  32. {$SETC UsingIncludes := 1}
  33.  
  34. {$IFC UNDEFINED __TYPES__}
  35. {$I Types.p}
  36. {$ENDC}
  37.  
  38. {$PUSH}
  39. {$ALIGN MAC68K}
  40. {$LibExport+}
  41.  
  42. {$IFC FOR_SYSTEM8_PREEMPTIVE }
  43.  
  44. CONST
  45.     kSNSDeathNotificationService = 'deth';                        {   0x64657468   }
  46.     kSNSFSNotificationService    = 'file';                        {   0x66696c65   }
  47.  
  48.     kSNSProcessKind                = 'proc';                        {   0x70726f63   }
  49.     kSNSKernelProcessKind        = 'kprc';                        {   0x6b707263   }
  50.     kSNSTaskKind                = 'task';                        {   0x7461736b   }
  51.  
  52. {$ENDC}
  53. {$ALIGN RESET}
  54. {$POP}
  55.  
  56. {$SETC UsingIncludes := SNSRegistryIncludes}
  57.  
  58. {$ENDC} {__SNSREGISTRY__}
  59.  
  60. {$IFC NOT UsingIncludes}
  61.  END.
  62. {$ENDC}
  63.